#if ( Expression )
  // true stuff happens here
#else // optional
  // false stuff happens here
#elseif ( Cond ) // optional
  ... // do this only if Expression is not true and Cond true
#end
